home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / XCOLUMN.H < prev    next >
Text File  |  1993-06-10  |  496b  |  28 lines

  1. /**************************************************
  2. *
  3. * FILE NAME: xcolumn.h   TITLE:  column description
  4. *
  5. * AUTHOR:       Ken North
  6. *
  7. * SYNOPSIS:
  8. *      column definition: XQLM / Netware SQL
  9. *
  10. ***************************************************/
  11.  
  12. #ifndef __XCOLUMN_H
  13. #define __XCOLUMN_H
  14.  
  15.  
  16. struct ColumnDesc
  17.    {
  18.     int     data_type;
  19.     int     size;
  20.     int     dec_places;
  21.     int     display_len;
  22.     int     namelen;
  23.     char    fldname [NAMELENGTH];
  24.    };
  25.  
  26.  
  27. #endif
  28.